/*===================================================
    Template Elements:
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&family=Roboto&family=Shadows+Into+Light&display=swap');

body{
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #7a7a7a;
    font-weight: 400;
    letter-spacing: -0.2px;
    position: relative;
    overflow-x: hidden;
}

/*Common Styles*/
{padding: 0; margin: 0;}

h1, h2, h3, h4, h5, h6{
    font-family: 'Jost', sans-serif;
    -webkit-font-smoothing:antialiased;
	color: #222;
}
h1{
    font-size: 48px;
    font-weight: 600;
    line-height: 55px;
    margin: 0 0 10px;
    color: #222;
    letter-spacing: -2px;
    text-transform: capitalize;
}
h2{
    font-size: 42px;
    line-height: 48px;
    color: #222;
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -1px;
}
h3,h4{
    margin: 0 0 10px;
    font-weight: 500;
    line-height: 1.7;
    color: #222;
    letter-spacing: -0.5px;
}
h3{ font-size: 20px; }
h4{ font-size: 16px; }
h5,h6{
    font-size: 14px;
    margin: 0 0 10px;
}
p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}
a{ color: #222; }
a, a:hover{
    text-decoration: none;
}
a:focus{
    outline: 0;
    text-decoration: none;
}
img{
    border: none;
    outline:none;
    max-width: 100%;
}
ul{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

/*Form Input Color*/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
   color: #999 !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder{ /* Firefox 18- */
   color: #999 !important;  
}

input::-moz-placeholder,
textarea::-moz-placeholder{  /* Firefox 19+ */
   color: #999 !important;  
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder{  
   color: #999 !important;  
}
button{
    border: none;
	background: none;
}

/*Padding Classes*/
.padding{ padding: 80px 0; }
.no-padding{ padding: 0; }
.padding-15{ padding: 15px; }
.padding-20{ padding: 20px; }

/* Default Background Color*/
.bg-white{ background-color: #fff; }
.bg-grey{ background-color: #fab52210; }
.bg-grey-2{ background-color: #fafafa; }
.bg-dark{ background-color: #111!important; }

/* Default Background Shape*/
.bg-shape{
    background-repeat-x: repeat;
    background-position: bottom center;
    width: 100%;
    height: 15px;
    position: absolute;
    left: 0; 
    bottom: -1px;
    z-index: 1;
}
.bg-shape.white{ background-image: url(../img/shape-white.png); } 
.bg-shape.grey{ background-image: url(../img/shape-grey.png); } 

/*Boder Classes*/
.bd-top{ border-top: 1px solid #eee; }
.bd-bottom{ border-bottom: 1px solid #eee; }
.bd-left{ border-left: 1px solid #eee; }
.bd-right{ border-right: 1px solid #eee; }

/* Margin Class */
.mt-10{ margin-top: 10px; }
.mt-15{ margin-top: 15px; }
.mt-20{ margin-top: 20px; }
.mt-25{ margin-top: 25px; }
.mt-30{ margin-top: 30px; }
.mt-35{ margin-top: 35px; }
.mt-40{ margin-top: 40px; }
.mt-45{ margin-top: 45px; }
.mt-50{ margin-top: 50px; }
.mb-10{ margin-bottom: 10px; }
.mb-15{ margin-bottom: 15px; }
.mb-20{ margin-bottom: 20px; }
.mb-25{ margin-bottom: 25px; }
.mb-30{ margin-bottom: 30px; }
.mb-35{ margin-bottom: 35px; }
.mb-40{ margin-bottom: 40px; }
.mb-45{ margin-bottom: 45px; }
.mb-50{ margin-bottom: 50px; }
.ml-50{ margin-left: 50px; }
.pb-30{ padding-bottom: 30px; }
.pb-80{ padding-bottom: 80px; }

/*Transition Effect*/
a,a:hover, img, .form-control, .form-control:hover, button{
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*Scrollbar Style*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px
}
::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #5fbd74;
}
::selection {
    background-color: #5fbd74;
    color: #fff
}
-webkit-::selection {
    background-color: #5fbd74;
    color: #fff
}
::-moz-selection {
    background-color: #5fbd74;
    color: #fff
}

/* Site Preloader*/
.loaded .site-preloader{
    opacity: 0;
    visibility: hidden;
}
.site-preloader{
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
}
.site-preloader .spinner{
    background-color: #5fbd74;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}
.spinner{
  width: 40px;
  height: 40px;
  border-radius: 100%;  
  -webkit-animation: scaleout 1.0s infinite ease-in-out;
  animation: scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes scaleout{
    0% { -webkit-transform: scale(0) }
    100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
    }
}

@keyframes scaleout{
    0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
    } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
    }
}

/* Swiper Controls */
.swiper-container{
    height: 300px;
    position: relative;
    overflow: hidden;
}
.carousel-preloader{
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.carousel-preloader .dot-flashing,
.carousel-preloader .dot-flashing::before,
.carousel-preloader .dot-flashing::after{
    background-color: #6c7a87;
}
.swiper-initialized{
    height: auto;
}
.swiper-initialized .carousel-preloader{
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s linear;
}
.dl-slider-controls{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    margin-top: 30px;
}
.dl-slider-button-prev, .dl-slider-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.dl-slider-button-prev:hover, .dl-slider-button-next:hover{
    color: #fab522;
    transition: all 0.2s ease-in-out;
}
.dl-slider-button-prev svg, .dl-slider-button-next svg {
    width: 20px;
}

/* Style 2 */
.nav-outside{
    position: relative;
    margin: 0 -55px;
}
.nav-outside .swiper-container{
    position: static;
    width: calc(100% - 110px);
    margin: 0 auto;
}
.dl-slider-controls.style-2 .dl-slider-button-prev,
.dl-slider-controls.style-2 .dl-slider-button-next{
    background-color: #fff;
    color: #0b2238;
    border: 1px solid #eee;
    width: 50px;
    height: 50px;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
.dl-slider-controls.style-2 .dl-slider-button-next{
    left: auto;
    right: 5px;
}
.swiper-container:not(.nav-visible):hover .dl-slider-controls.style-2 > div{
    visibility: visible;
    opacity: 1;
}
.swiper-container:not(.nav-visible):hover .dl-slider-controls.style-2 .dl-slider-button-prev{ left: 0; }
.swiper-container:not(.nav-visible):hover .dl-slider-controls.style-2 .dl-slider-button-next{ right: 0; left: auto; }
.nav-outside .dl-slider-controls.style-2 .dl-slider-button-prev,
.nav-outside .dl-slider-controls.style-2 .dl-slider-button-next{
    width: 50px;
    height: 50px;
}
.nav-outside .dl-slider-button-prev svg, .nav-outside .dl-slider-button-next svg {
    width: 15px;
}
.dl-slider-controls.style-2 .dl-slider-button-prev:hover,
.dl-slider-controls.style-2 .dl-slider-button-next:hover{
    background-color: #fab522;
    color: #fff;
}
.nav-visible .dl-slider-controls.style-2 > div{
    visibility: visible;
    opacity: 1;
    left: 30px;
}
.nav-visible .dl-slider-controls.style-2 > div.dl-slider-button-next{
    right: 30px; 
    left: auto;
}
@media (max-width: 580px){
    .nav-outside{
        margin: 0;
    }
    .nav-outside .swiper-container{
        width: 100%;
    }
}

/* Bullets */
.dl-swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 0;
}
.dl-swiper-pagination .swiper-pagination-bullet {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: inherit;
    border-radius: inherit;
    background: transparent;
    opacity: 1;
}
.dl-swiper-pagination .swiper-pagination-bullet svg{
    width: 100%;
    height: 100%;
}
.dl-swiper-pagination .swiper-pagination-bullet .path {
    stroke: #eee;
    stroke-width: 1px;
    display: none;
}
.dl-swiper-pagination .swiper-pagination-bullet .solid-fill{
    fill: #bbb;
}
.dl-swiper-pagination .swiper-pagination-bullet-active .path {
    stroke: #fab522;
    display: inline-block !important;
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
    animation: dash ease-in 3s;
    animation-iteration-count: unset;
}
.dl-swiper-pagination .swiper-pagination-bullet-active .solid-fill{
    fill: #fab522;
}
@-webkit-keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}
@keyframes dash {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/*Default Button*/
.btn-group{}
.btn-group a{ margin: 5px; }
.btn-group-left a{ margin-right: 10px; }
.default-btn{
    display: inline-block;
    background: #5fbd74;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    letter-spacing: 0;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
    z-index: 1;
}
.default-btn:hover{ color: #fff; }
.default-btn span {
    background: #fab522 none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    height: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    width: 0;
    z-index: -1;
}
.default-btn:hover span {
    height: 562.5px;
    width: 562.5px;
}

/*Section Heading*/
.section-heading{}
.section-heading h4{
    font-family: "Shadows Into Light", sans-serif;
    font-size: 30px;
    font-weight: 500; 
    color: #fab522;
}
.section-heading h2{
    font-size: 42px;
    line-height: 48px;
    display: block;
}
.section-heading p{ margin-bottom: 0; }

/*Check List*/
.check-list{}
.check-list li{
    display: flex;
    align-items: center;
}
.check-list li:not(:last-of-type){ margin-bottom: 10px; }
.check-list li i{
    font-size: 12px;
    color: #fab522;
    margin-right: 10px;
}

/*Page Header*/
.page-header{
    background-image: url(../img/background-pattern01.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.page-header .page-header-shape{
    background-image: url(../img/page-header-img.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.page-header.gradiant{
    background-color: transparent;
    background-image: linear-gradient(
    180deg, #EAF2F4 0%, #FFFFFF 100%);
}
.page-header-info{}
.page-header-info h4{
    font-family: "Shadows Into Light", sans-serif;
    color: #fab522;
    font-size: 30px;
    font-weight: 500;
    margin: 0;
}
.page-header-info h2{
    color: #333;
    font-size: 42px;
    margin-bottom: 20px;
}
.page-header-info p{
    color: #7a7a7a;
    margin: 0;
}
.page-header.gradiant .page-header-info h2{ color: #222; }
.page-header.gradiant .page-header-info p{ color: #555; }

.page-header .post-meta{ margin-top: 20px; }
.page-header.blog-details{height: 500px;}
.page-header.blog-details .page-header-info{margin-top: 50px;}

/*Overlay*/
.overlay{
    background-color: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.overlay.white{
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/* Rattings */
.ratting{}
.ratting li{
    display: inline-block;
    color: #FF9529;
    font-size: 14px;
    margin: 0 -2px;
}

/* Error Page */
.error-section{
    position: relative;
    border-top: 1px solid #eee;
}

/* Scroll Up */
#scrollup{
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
}
.scroll-to-top{
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #5fbd74;
    font-size: 20px;
    padding: 0;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    outline: none;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}
#scrollup.show{ opacity: 1; }
#scrollup.show .scroll-to-top{
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}
.scroll-to-top:hover{
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

/* max-width 1024px */
@media (max-width: 1024px) {}

/* max-width 992px */
@media (max-width: 992px) {
    .padding{ padding: 50px 0; }
    .sm-padding{ padding: 15px; }
    p br{ display: none; }
    span br{ display: none; }
    .default-btn{ padding: 0 30px; }
    div.footer-header h3,
    .post-card .post-content h3{
        font-size: 22px;
        line-height: 28px;
    }
}

/* max-width 768px */
@media all and (max-width: 768px) {
    .padding{ padding: 50px 0; }
    .xs-padding{ padding: 15px; }
    p br{ display: none; }
    .page-header-info h2{
        font-size: 32px;
        line-height: 36px;
    }
    .post-details p{
        font-size: 17px;
        line-height: 27px;
    }
}

/* max-width 580px */
@media all and (max-width: 580px) {}

/* max-width 420px */
@media all and (max-width: 420px) {}

/* max-width 320px */
@media (max-width: 320px) {}

